/*
 * Global Styles
 * Set up a clean, full-page layout with a background image.
 */
.uc-background {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('/img/UC\ img/keagan-henman.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/*
 * Main Container for the Glassmorphic Element
 * Centers the content and adds padding.
 */
.uc-container {
    max-width: 90%;
    padding: 2.5rem;
    text-align: center;
    border-radius: 25px;
    /* Glassmorphism magic */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/*
 * Text Styling
 */
.uc-heading {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.uc-text {
    font-size: 1.2em;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: white;
}

/*
 * PHP Element
 * This section demonstrates how to use PHP to display dynamic content.
 */
.uc-message {
    font-weight: bold;
    font-size: 1.5em;
    margin-top: 1em;
    color: white;
}